home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 8 / FM Towns Free Software Collection 8.iso / t_os / gpen32k / source / lib / osrc / oboxbf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-01  |  162 b   |  11 lines

  1. /*
  2.     おこめ標準グラフィック関数
  3. */
  4.  
  5. #include    <NORMLIB.h>
  6.  
  7. void boxbf(int x, int y, int xn, int yn, int c1, int c2)
  8. {
  9.     box(x, y, xn, yn, 0x22, c1, c2);
  10. }
  11.